net/http.http2requestParam.authority (field)

9 uses

	net/http (current package)
		h2_bundle.go#L6023: 		authority: f.PseudoValue("authority"),
		h2_bundle.go#L6029: 		if rp.path != "" || rp.scheme != "" || rp.authority == "" {
		h2_bundle.go#L6050: 	if rp.authority == "" {
		h2_bundle.go#L6051: 		rp.authority = rp.header.Get("Host")
		h2_bundle.go#L6078: 	scheme, authority, path string
		h2_bundle.go#L6121: 		url_ = &url.URL{Host: rp.authority}
		h2_bundle.go#L6122: 		requestURI = rp.authority // mimic HTTP/1 server behavior
		h2_bundle.go#L6147: 		Host:       rp.authority,
		h2_bundle.go#L7045: 			authority: msg.url.Host,